This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: Refreshing uidoc with action button in embedded view ~Yentl Kireplopings 20.Jan.04 10:10 PM a Web browser Domino Designer 6.0.2 CF2Windows 2000
Here is my code now, but still have the same results:
Sub Click(Source As Button)
Dim ws As New NotesUIWorkspace
Dim uiview As NotesUIView
Dim dc As NotesDocumentCollection
Dim doc As NotesDocument
Set uiview = ws.CurrentView
Set dc = uiview.Documents
Set doc = dc.GetFirstDocument
While Not (doc Is Nothing)
doc.status="Complete"
Call doc.save(False,True)
Set doc=dc.GetNextDocument(doc)
Wend
Call uiview.DeselectAll
Dim view As NotesView
Set view = uiview.View
Call view.Refresh
Call ws.ViewRefresh